home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / tvg103.zip / DEMOCMDS.PAS next >
Pascal/Delphi Source File  |  1992-07-29  |  848b  |  34 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Pascal 6.0                             }
  4. {   Turbo Vision Demo                            }
  5. {   Copyright (c) 1990 by Borland International  }
  6. {                                                }
  7. {************************************************}
  8.  
  9. unit DemoCmds;
  10.  
  11. {$D+,L+}
  12.  
  13. interface
  14.  
  15. const
  16.   cmFOpen           = 1000;
  17.   cmChDir           = 1001;
  18.   cmAbout           = 1002;
  19.   cmPuzzle          = 1003;
  20.   cmCalendar        = 1004;
  21.   cmAsciiTab        = 1005;
  22.   cmCalculator      = 1006;
  23.   cmMouse           = 1007;
  24.   cmColors          = 1008;
  25.   cmDosShell        = 1009;
  26.   cmSaveDesktop     = 1010;
  27.   cmRetrieveDesktop = 1011;
  28.   cmStyx            = 1012;
  29.   cmProdStyx        = 1013;
  30.  
  31. implementation
  32.  
  33. end.
  34.